home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
47215
/
47215.xpi
/
chrome
/
content
/
lib
/
windows.js
< prev
Wrap
Text File
|
2009-11-22
|
856b
|
30 lines
(function()
{
//returns the focused window
this.windowGetFocused = function()
{
//dispatch the event to the extension
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator);
return wm.getMostRecentWindow('navigator:browser');
}
//returns an array of navigator:browser
this.windowsGet = function()
{
var windows = [];
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator);
var enumerator = wm.getEnumerator('navigator:browser');
while(enumerator.hasMoreElements())
{
var win = enumerator.getNext();
// win is [Object ChromeWindow] (just like window), do something with it
windows[windows.length] = win;
}
return windows;
}
return null;
}).apply(URLtoTabTitle);